.hero {
  width: 100%;
  height: 685px;
  background-color: var(--third-shadow);
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-inline-start: 3rem;
  margin-inline-end: 3rem;
}

.hero-left {
  color: #ffffff;
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
}

.hero-right {
  margin-top: 6.5rem;
  display: flex;
  flex-direction: column;
}

.hero-right img {
  border-radius: 18px;
  box-shadow: 0.8em 0.8em var(--bg-black);
  height: 500px;
  width: 480px;
}

.hero-right img:hover {
  scale: 1.02;
  transition-duration: 300ms;
  box-shadow: 1em 1em var(--bg-black);
}

.pengenalan {
  width: 100%;
  height: 750px;
  background-color: #ffffff;
}

.pengenalan-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-inline-start: 3rem;
  margin-inline-end: 9rem;
}

.pengenalan-left {
  margin-top: 6.5rem;
  display: flex;
  flex-direction: column;
}

.pengenalan-left img {
  border-radius: 18px;
  box-shadow: 0.8em 0.8em var(--bg-black);
  height: 500px;
  width: 500px;
}

.pengenalan-left img:hover {
  scale: 1.02;
  transition-duration: 300ms;
  box-shadow: 1em 1em var(--bg-black);
}

.pengenalan-right {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
}

.findme {
  width: 100%;
  height: 600px;
  background-color: var(--third-shadow);
}

.findme-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-inline: 3rem;
}

.findme h1 {
  font-size: 50px;
  color: #ffffff;
}

.findme-content article {
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  width: 250px;
  height: 280px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* icon */
.findme-content .icons {
  font-size: 100px;
  color: #ffffff;
  font-weight: bold;
  display: block;
  margin: 0 auto 20px auto;
}

/* tombol */
.findme-content button {
  margin: 5px auto 10px auto;
  padding: 6px 14px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  height: 50px;
}

.findme-content button:hover {
  background-color: #555;
}

.footer-absolute {
  width: 100%;
  height: fit-content;
  background-color: var(--third-shadow);
  color: white;
  text-align: center;
}

.footer-absolute p {
  font-size: 15px;
  opacity: 75%;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-content,
  .pengenalan-content,
  .findme-content {
    margin-inline-start: 3rem;
    margin-inline-end: 3rem;
    gap: 2rem; 
    font-size: smaller;
  }
  .hero-right img,
  .pengenalan-left img {
    width: 340px;
    height: 340px;
  }
}

@media (max-width: 900px) {
  .hero-content,
  .pengenalan-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
        padding-top: 3em;
    gap: 1.5rem;
  }
  .hero-left,
  .hero-right,
  .pengenalan-left,
  .pengenalan-right {
    margin-top: 2rem;
  }
  .hero-right img,
  .pengenalan-left img {
    width: 260px;
    height: 260px;
  }
  .hero-left h1,
  .pengenalan-right h1 {
    font-size: 1.3rem;
  }
  .pengenalan-right ul {
    font-size: 1.1rem;
  }

  .findme {
    height: auto;
    padding-bottom: 2rem;
  }

  .findme-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .findme-content article {
    width: 180px;
    height: 240px;
    font-size: 1rem;
  }

  .findme-content article footer{
    margin-block:1em ;
  }

  .findme h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero,
  .pengenalan,
  .findme {
    height: auto;
    padding-bottom: 2rem;
  }
  .hero-content,
  .pengenalan-content,
  .findme-content {
    padding-top: 3em;
    margin-inline: 0.5rem;
    gap: 1rem;
  }
  .hero-right img,
  .pengenalan-left img {
    width: 140px;
    height: 140px;
  }
  .hero-left h1,
  .pengenalan-right h1 {
    font-size: 1rem;
  }
  .pengenalan-right ul {
    font-size: 0.95rem;
  }

    .findme-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .findme-content article {
    width: 180px;
    height: 240px;
    font-size: 1rem;
  }

  .findme-content article footer{
    margin-block:1em ;
  }
  
}

